home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_03 / 1003034b < prev    next >
Text File  |  1992-01-22  |  407b  |  24 lines

  1.  
  2. EXAMPLE 5 :
  3.  
  4. /****************************************************
  5. * This is an example of global, generic floating point 
  6. * arrays which are used to pass parameters 
  7. *
  8. * This code is compiled to RAM.
  9. ****************************************************/
  10.  
  11. file main.h
  12.  
  13.  
  14. #define NUMPARAMS  20
  15. #define NUMRESULTS 12
  16.  
  17. file main.c
  18.  
  19. float params[NUMPARAMS];
  20. float results[NUMRESULTS];
  21.  
  22.  
  23.  
  24.